home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / comm / exscan04.readme < prev    next >
Encoding:
Text File  |  2000-05-25  |  4.1 KB  |  139 lines

  1. Short:    ExScan 0.4 port by LouiSe - TCP/IP portscanner
  2. Author:   LouiSe
  3. Uploader: LouiSe <louise@amiga.hu>
  4. Type:     comm.tcp
  5.  
  6. REQUIRES IXEmul package! http://www.ninemoons.com
  7.  
  8. http://amigaonly.ahol.com/louise
  9.  
  10. ==================================================
  11.  
  12. exscan - v0.4 - By PolarRoot [pi9@hotmail.com] [http://exscan.netpedia.net]
  13.         QueSO - Remote OS Identification - By Savage
  14.         QueSO code has been modified and integrated with permission.
  15.  
  16. Usage:
  17.     ./exscan [options] <hostname> [port]
  18.     [options]  - command line options (see list below)
  19.     <hostname> - name of target computer (IP or name); required
  20.     [port]     - port number(s) to scan; space-delimited list
  21.  
  22. Options:
  23.     -f <file>    - send output to <file> file
  24.     -h or -?    - show on-screen help (this screen)
  25.     -l        - only list services which would be scanned
  26.     -o        - only perform QueSO - do not port scan
  27.     -q        - disable QueSO remote OS identification
  28.     -v        - verbose mode
  29.     -V        - print version information
  30.  
  31. Examples:
  32.     ./exscan 127.0.0.1
  33.     ./exscan www.rootshell.com 80
  34.     ./exscan www.l0pht.com 23 80 110
  35.  
  36. ==================================================
  37. INTRODUCTION
  38.  
  39. exscan is a network/Internet port scanner, that 
  40. uses the strobe-scan technique of only scanning 
  41. certain ports, instead of a full blown port scan.  
  42. The ports which exscan scans can be viewed in 
  43. the file SERVICES which is distributed with 
  44. exscan.
  45.  
  46. exscan is not only a port scanner, though.  With 
  47. some services (such as finger and HTTP) exscan 
  48. queries the server for information (such as 
  49. the users on finger; and the server version on 
  50. HTTP).  On other services (such as FTP, SMTP, 
  51. and others) exscan displays the information 
  52. returned by the server, sometimes called a 
  53. banner, and usually including the 
  54. server type and version.
  55.  
  56. Starting with the 0.3 release, exscan has the 
  57. remote OS identification functionality from 
  58. QueSO integrated into the exscan interface.  
  59. Now whenever you scan a host you'll also know 
  60. whether the target is running Linux, Windows, 
  61. or any other operating system.
  62.  
  63. exscan aims to be a tool which can handle all 
  64. of your port scanning and machine scanning 
  65. needs within the comfortable interface of 
  66. a single program.
  67.  
  68. I hope you find exscan useful.  If you have any 
  69. suggestions (or hopefully improvements you have 
  70. made) please send them to me.  I believe that the
  71. best way for exscan to evolve, is for programmers
  72. and hackers around the world to use it, break it,
  73. and improve it.  E-mail me at:
  74.                 pi9@hotmail.com
  75.  
  76. ==================================================
  77. INSTALLATION
  78.  
  79. 1)  To compile, type:
  80.     make
  81. 2)  To install, as root type:
  82.     make install
  83.  
  84. Not too painful, eh?
  85.  
  86. ==================================================
  87. HOW-TO-USE exscan
  88.  
  89. exscan must be run with the name of the target 
  90. computer, or the host you wish to scan.  The 
  91. hostname can be in the form of a name (localhost) 
  92. or IP address (127.0.0.1)  If you do not want to 
  93. scan all of the ports exscan scans by default 
  94. (see SERVICES), you may also list the ports you 
  95. do want exscan to scan after the host name.  
  96. There can be any number of ports, delimited 
  97. (or separated) by spaces.
  98.  
  99. If you want to scan your own computer, you 
  100. might use:
  101.     exscan localhost
  102.  
  103. If you only want to scan your computer for 
  104. telnet, you might use:
  105.     exscan localhost 23
  106.  
  107. If you want to scan your computer for telnet 
  108. and HTTP, you might use:
  109.     exscan localhost 23 80
  110.  
  111. Also, see the exscan on-screen help for 
  112. information on the various command-line arguments.  
  113. Here are some examples:
  114.  
  115. To only list the services which would be 
  116. scanned, you might use:
  117.     exscan -l localhost
  118.  
  119. To disable QueSO functionality, you might use:
  120.     exscan -q localhost
  121.  
  122. To only use QueSO operating system 
  123. identification, you might use:
  124.     exscan -o localhost
  125.  
  126. To direct output to a file, instead of the 
  127. console or screen, you might use:
  128.     exscan -f localhost.scan localhost
  129.  
  130. To only print the version information of 
  131. exscan, you might use:
  132.     exscan -V
  133.  
  134. ==================================================
  135. exscan was written by PolarRoot (pi9@hotmail.com)
  136. on a RedHat Linux 5.1 box with the Linux 2.0.36 Kernel.
  137. The exscan homepage can be found at:
  138.     http://exscan.netpedia.net/exscan.html
  139.